home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / MandelJulia.Form < prev    next >
Text File  |  1995-03-23  |  289b  |  35 lines

  1. MandelJulia
  2. {
  3.     {
  4.         x1=-2.0
  5.         x2= 2.0
  6.         y1=-2.0
  7.         y2= 2.0
  8.         par1.r=-0.75
  9.         par1.i=0.2
  10.         par2.r=0.05
  11.         par2.i=0.0
  12.         bailout=4.0
  13.     }
  14.     {
  15.         zm=pixel
  16.         zj=pixel
  17.         cm=pixel
  18.         cj=par1
  19.     }
  20.     {
  21.         zm=zm*zm
  22.         zm=zm+cm
  23.         zj=zj*zj
  24.         zj=zj+cj
  25.         w1=abs(zm)
  26.         w1=w1*par2
  27.         w2=abs(zj)
  28.     }
  29.     {
  30.         w1>w2
  31.     }
  32.     {
  33.     }
  34. }
  35.